home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1994 November / Cd Ware (Nro. 2) - Epimundo.iso / DOS / PG / TED.ZIP / README.ASM < prev    next >
Encoding:
Assembly Source File  |  1994-05-13  |  2.2 KB  |  78 lines

  1. ;============================================================================
  2. ;                      --- TED V1.61aß ---
  3. ;============================================================================
  4. ;
  5. ;           One more time, a new version of TED is out !
  6. ;
  7. ; This version is the 1.61aß.
  8. ; Why ß ? Just because the HELP is not complete, and because of few
  9. ; persistents bugz in the integrated debugger.
  10. ;
  11. ; Syntax highlite:
  12. ; ----------------
  13. ;
  14. ; New feature. In effect, now you are able to see your
  15. ; assembler source in colors. Highlite works for the Symbols,
  16. ; Reserved Keywords, Comments, Hexadecimal, Binary and Decimal numbers, and for
  17. ; the strings.
  18. ; Just one restriction, *DO NOT* PkLite or Diet or LzExe TED.EXE.
  19. ; With it, that's easier to make your own sources. Less syntax errors.
  20. ; Example:
  21.  
  22. .Model Small
  23. .386
  24.  
  25. .Stack 200H
  26.  
  27. .Data
  28.  
  29. Foo db 'Ted is cool!', 10h, 13h
  30. Num db 225, 345
  31.  
  32. .code
  33. Locals
  34.  
  35. MyProc Proc FAR
  36. Arg Arguments : Word
  37.     Mov AX, Word ptr ES:[DI]
  38. endp
  39.  
  40. end
  41.  
  42. ; This version contains certainly some bugz, so if you find 'em please
  43. ; gimme the info.
  44. ; If you are interested in a new feature, just ask it !
  45. ; You can send all your comments to:
  46. ;
  47. ;                   Emmanuel Thioux
  48. ;                   912 Capitola avenue
  49. ;                   Apt #16
  50. ;                   Capitola        C.A
  51. ;                   95010         U.S.A
  52. ;
  53. ; That's all guys
  54.  
  55. ; Integrated Debugger:
  56. ; --------------------
  57. ;
  58. ; Great new feature !
  59. ; With this integrated debugger you can trace your porgram.
  60. ; For the moment only F7 (Trace) works. For the next version I hope I'll
  61. ; integrate Step and Breakpoints.
  62. ; So, there's a Registers Window, Dump Window and Stack Window. Each of
  63. ; 'em contains a local menu.
  64. ; But, in this version some things are wrong.
  65. ; Moreover, The debugger is not reliable at this point (Memory
  66. ; problems), some local commands don't work.
  67. ; But, it's a good preview for the future TED.
  68. ;
  69. ; **********************************************************************
  70. ;
  71. ;
  72. ; Enjoy !
  73. ;
  74. ;                                           Manu.
  75. ;
  76. ; **********************************************************************
  77.  
  78.